home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000247_news@columbia.edu _Mon Jun 17 05:16:41 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id FAA18633 for <kermit.misc@watsun>; Mon, 17 Jun 1996 05:16:37 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id FAA16898 for kermit.misc@watsun; Mon, 17 Jun 1996 05:16:32 -0400 (EDT)
  4. Path: news.columbia.edu!lamont.ldeo.columbia.edu!zombie.ncsc.mil!news.mathworks.com!news-res.gsl.net!news.gsl.net!news-paris.gsl.net!news.gsl.net!news.alcatel.fr!usenet
  5. From: PONTAILLER Laurent <laurent.pontailler@ln.cit.alcatel.fr>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: file transfer recovery script
  8. Date: Mon, 17 Jun 1996 09:32:29 +0200
  9. Organization: ALCATEL CIT
  10. Lines: 46
  11. Message-ID: <31C50A0D.41C6@ln.cit.alcatel.fr>
  12. References: <31C004A5.41C6@ln.cit.alcatel.fr> <4pp9vt$4ls@apakabar.cc.columbia.edu>
  13. NNTP-Posting-Host: nsfhh5.alcatel.fr
  14. Mime-Version: 1.0
  15. Content-Type: text/plain; charset=us-ascii
  16. Content-Transfer-Encoding: 7bit
  17. X-Mailer: Mozilla 2.02 (X11; I; AIX 2)
  18.  
  19. Frank
  20.  
  21. Thank you veru much for your answer about my script, now it is working for it main part. I do apologize
  22. for not having the documentation but I get your book KERMIT a file transfer protocol, and i am waiting for
  23. my order of the manual (they told me about 3 weeks delay). So as we are testing the usability of kermit
  24. for our transfert from ALCATEL to our subsidaries all over the world i have to do the necessary script
  25. without the manual.
  26.  
  27. In writing the script I have another problem, when all the retries and timeout failed because of a true
  28. anomaly in the physical link I can't manage to restart the protocol. Ther is always some caracters in the
  29. pipe and I can't manage to login.
  30.  
  31.  
  32.     :LOOP
  33.     echo echec du transfert
  34.     echo nouvelle tentative dans 10 minutes
  35.     sleep \%t
  36.     clear
  37.     echo le clear est fait
  38.     ;
  39.     :NOMSG
  40.     ;
  41.     input 30 login:                     ; attente du prompt unix
  42.  
  43. this sequence always fail in timeout on input
  44.  
  45. Is there something missing to be able to restart the transfert ?
  46.  
  47. Thanks a lot Laurent
  48.  
  49. Frank da Cruz wrote:
  50. > In article <31C004A5.41C6@ln.cit.alcatel.fr>,
  51. > PONTAILLER Laurent  <laurent.pontailler@ln.cit.alcatel.fr> wrote:
  52. > : I am having a problem to write a file transfer recovery script under
  53. > : kermit for RS6000 boxes.
  54.  
  55.  
  56.  :  we are not going after the connect order.
  57. > :
  58. > Remove the CONNECT command.  As explained in the C-Kermit manual, INPUT
  59. > and OUTPUT take the place of CONNECT.  CONNECT is for people, INPUT and
  60. > OUTPUT are for scripts that do what the people would have done during
  61. > CONNECT.
  62. > - Frank